body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
}

html {
   _background: url(about:blank);
}

/* 酌情修改 */
body {
   font-family: '微软雅黑';
}



/* 重置页面文字属性 */
em {
   font-style: normal;
   /* 让斜体改为正常的*/
}

input,
button,
select,
textarea {
   border: 0;
   outline: none;
   /*去掉谷歌 360等表单的蓝色边框*/
}

textarea {
   resize: none;
}

/*防止谷歌等浏览器 textarea 可以拖动*/
/* 短引用的内容可取值：''或"" */
blockquote:before,
blockquote:after,
q:before,
q:after {
   content: '';
   content: none;
}

/* 重置嵌套引用*/
i {
   font-style: normal;
}

/* 缩写，图片等无边框 */
fieldset,
img,
abbr,
acronym {
   border: 0 none;
}

/* 重置fieldset（表单分组）、图片的边框为0*/
img {
   vertical-align: top;
   display: block;
}

/* 图片在当前行内的垂直位置 */
img {
   border: 0;
   display: block;
}

abbr,
acronym {
   font-variant: normal;
}

legend {
   color: #000;
}

blockquote,
q {
   quotes: none;
}

/* 重置嵌套引用的引号类型 */

/* 清除特殊标记的字体和字号 */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
   font-weight: normal;
   font-style: normal;
}

/* 重置样式标签的样式 */

/* 上下标 */
sup {
   vertical-align: text-top;
}

sub {
   vertical-align: text-bottom;
}

/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/
table {
   width: 100%;
   border-collapse: collapse;
   border-spacing: 0;
   /* table-layout: fixed; */
}

/* 重置table属性 */

/* 表格标题及内容居左显示 */
caption {
   display: none;
}

/* 重置表格标题为隐藏 */
caption,
th {
   text-align: left;
}

input,
select,
textarea,
button,
img {
   vertical-align: middle;
}

/* 重置表单控件垂直居中*/

/* 清除列表样式 */
dl,
ul,
ol,
menu,
li {
   list-style: none;
}

/* 重置类表前导符号为onne,menu在HTML5中有效 */

/* 输入控件字体 */
input,
button,
textarea,
select,
optgroup,
option {
   font-family: inherit;
   font-size: inherit;
   font-style: inherit;
   font-weight: inherit;
}

/* 标题元素样式清除 */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: normal;
   font-size: 100%;
}

/* 链接样式，颜色可酌情修改 */
del,
ins,
a {
   text-decoration: none;
}

a:hover,
a:active,
a:focus {
   text-decoration: none;
}

/* 取消a标签点击后的虚线框 */
a:active {
   outline: none;
}

/* 设置页面文字等在拖动鼠标选中情况下的背景色与文字颜色 */

::selection {
   color: #fff;
   background-color: #e2534f;
}

::-moz-selection {
   color: #fff;
   background-color: #e2534f;
}

a {
   outline: none;
   transition: color .3s ease 0s;
}

/*链接秒数缓冲效果*/
/* 层板块缓冲效果       transition: all 0.3s ease 0s;   */
/**去除点击后出现蓝色边框**/
input,
a {
   outline: none;
}

/* 鼠标样式 */
input[type='submit'] {
   cursor: pointer;
}

button {
   border: 0 none;
   background-color: transparent;
   cursor: pointer;
}

/* 重置表单button按钮效果 */
input::-moz-focus-inner {
   border: 0;
   padding: 0;
}

/* 清除浮动 */
.clearfix {
   zoom: 1;
}

.clearfix:after {
   content: '\20';
   display: block;
   clear: both;
   height: 0;
   overflow: hidden;
}



/* 鼠标样式 
div{ cursor:default }默认正常鼠标指针
div{ cursor:hand }和div{ cursor:text } 文本选择效果
div{ cursor:move } 移动选择效果
div{ cursor:pointer } 手指形状 链接选择效果
div{ cursor:url(url图片地址) }设置对象为图片*/